home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / fgl105c.zip / 13-04.C < prev    next >
Text File  |  1991-05-06  |  315b  |  20 lines

  1. main()
  2. {
  3.    int i;
  4.    int freq;
  5.    int sound_array[83];
  6.  
  7.    i = 0;
  8.  
  9.    for (freq = 100; freq <= 500; freq+=10) {
  10.       sound_array[i++] = freq;
  11.       sound_array[i++] = 8;
  12.       }
  13.    sound_array[i] = 0;
  14.  
  15.    fg_sounds(sound_array,1);
  16.  
  17.    while(fg_playing())
  18.       printf("Still playing...\n");
  19. }
  20.